Skip to content

v1.9.0 — Windows support (x64, x64-modern, x64-baseline, ARM64)#109

Merged
shouze merged 2 commits intomainfrom
release/1.9.0
Mar 11, 2026
Merged

v1.9.0 — Windows support (x64, x64-modern, x64-baseline, ARM64)#109
shouze merged 2 commits intomainfrom
release/1.9.0

Conversation

@shouze
Copy link
Contributor

@shouze shouze commented Mar 11, 2026

v1.9.0

Bump version to 1.9.0 + blog post for the Windows support release.

What's in this PR

  • package.json: 1.8.3 → 1.9.0
  • docs/blog/release-v1-9-0.md: blog post highlighting Windows multi-arch support and the PowerShell one-line installer
  • docs/blog/index.md: prepend v1.9.0 row
  • CHANGELOG.md: prepend v1.9.0 row

Tag

v1.9.0 is already pushed — merging this PR will trigger the CD pipeline to build all platform binaries and create the GitHub Release automatically.


Upgrade:

github-code-search upgrade

Copilot AI review requested due to automatic review settings March 11, 2026 06:57
@github-actions
Copy link

Coverage after merging release/1.9.0 into main will be

96.35%

Coverage Report
FileStmtsBranchesFuncsLinesUncovered Lines
src
   aggregate.ts100%100%100%100%
   api-utils.ts93.20%100%93.75%93.13%101–103, 65, 73, 86–87, 91–92
   api.ts94.55%100%100%93.86%318–322, 383, 400, 63–69
   cache.ts98.08%100%100%97.87%28
   completions.ts99.35%100%100%99.29%252
   group.ts100%100%100%100%
   output.ts99.12%100%94.74%99.52%58
   render.ts94.26%100%89.47%94.49%158, 182–187, 189–191, 193–194, 245–246, 267, 440–441, 523–527
   upgrade.ts88.46%100%94.44%87.89%127–128, 148–155, 158–164, 169, 174, 210–213
src/render
   filter-match.ts97.44%100%92.31%100%
   filter.ts100%100%100%100%
   highlight.ts96.63%100%90.40%99.31%284–285
   rows.ts97.58%100%100%97.44%168, 54–55
   selection.ts100%100%100%100%
   summary.ts100%100%100%100%

@github-actions
Copy link

Coverage after merging release/1.9.0 into main will be

96.35%

Coverage Report
FileStmtsBranchesFuncsLinesUncovered Lines
src
   aggregate.ts100%100%100%100%
   api-utils.ts93.20%100%93.75%93.13%101–103, 65, 73, 86–87, 91–92
   api.ts94.55%100%100%93.86%318–322, 383, 400, 63–69
   cache.ts98.08%100%100%97.87%28
   completions.ts99.35%100%100%99.29%252
   group.ts100%100%100%100%
   output.ts99.12%100%94.74%99.52%58
   render.ts94.26%100%89.47%94.49%158, 182–187, 189–191, 193–194, 245–246, 267, 440–441, 523–527
   upgrade.ts88.46%100%94.44%87.89%127–128, 148–155, 158–164, 169, 174, 210–213
src/render
   filter-match.ts97.44%100%92.31%100%
   filter.ts100%100%100%100%
   highlight.ts96.63%100%90.40%99.31%284–285
   rows.ts97.58%100%100%97.44%168, 54–55
   selection.ts100%100%100%100%
   summary.ts100%100%100%100%

@shouze shouze merged commit f3dad75 into main Mar 11, 2026
8 checks passed
@shouze shouze deleted the release/1.9.0 branch March 11, 2026 06:59
@github-actions
Copy link

🔦 Lighthouse Report

Page ⚡ Perf ♿ A11y 🛡️ BP 🔍 SEO Report
/github-code-search/ 🟢 98 (≥97) 🟢 100 (≥99) 🟢 100 (≥99) 🟢 100 (≥99) 🔗 view
/github-code-search/getting-started/ 🟢 99 (≥97) 🟢 100 (≥99) 🟢 100 (≥99) 🟢 100 (≥99) 🔗 view

Thresholds: Perf ≥ 97 · A11y ≥ 99 · BP ≥ 99 · SEO ≥ 99
commit 8b91047 · full workflow run

Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Bumps the project to v1.9.0 and publishes the accompanying release communications for the Windows multi-architecture support release.

Changes:

  • Bump package.json version from 1.8.3 to 1.9.0
  • Add blog post for v1.9.0 (Windows multi-arch + PowerShell installer)
  • Update blog index and root changelog to include v1.9.0

Reviewed changes

Copilot reviewed 4 out of 4 changed files in this pull request and generated 2 comments.

File Description
package.json Version bump to 1.9.0 for the release.
docs/blog/release-v1-9-0.md New v1.9.0 release post describing Windows multi-arch support and installation.
docs/blog/index.md Adds v1.9.0 entry to the blog release index table.
CHANGELOG.md Adds v1.9.0 entry pointing to the blog post.

Comment on lines +30 to +34
Installing from an elevated PowerShell prompt is now a single command:

```powershell
irm https://github.com/fulll/github-code-search/install.ps1 | iex
```
Copy link

Copilot AI Mar 11, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This says “elevated PowerShell prompt” but install.ps1 installs to a user directory and updates the HKCU user PATH, so admin elevation shouldn’t be required. Also, the one-liner uses https://github.com/fulll/github-code-search/install.ps1, which returns an HTML page rather than the raw script; update it to the raw URL (as used in README / installation docs) so iex runs the script content.

Copilot uses AI. Check for mistakes.
Comment on lines +37 to +45
`%LOCALAPPDATA%\github-code-search`, and adds the directory to your user `PATH`
automatically.

To install a specific version or architecture:

```powershell
irm https://github.com/fulll/github-code-search/install.ps1 | iex
# or
Invoke-RestMethod https://github.com/fulll/github-code-search/install.ps1 | Invoke-Expression
Copy link

Copilot AI Mar 11, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This section says the script downloads to %LOCALAPPDATA%\github-code-search, but install.ps1 defaults to ${Home}\.github-code-search\bin (unless -InstallDir is provided). Also, the “specific version or architecture” examples repeat the same command without showing how to pass -Version / -Target parameters, so readers can’t actually follow the instructions.

Suggested change
`%LOCALAPPDATA%\github-code-search`, and adds the directory to your user `PATH`
automatically.
To install a specific version or architecture:
```powershell
irm https://github.com/fulll/github-code-search/install.ps1 | iex
# or
Invoke-RestMethod https://github.com/fulll/github-code-search/install.ps1 | Invoke-Expression
`${Home}\.github-code-search\bin` (unless you override `-InstallDir`), and adds
the directory to your user `PATH` automatically.
To install a specific version or architecture, pass `-Version` and/or `-Target`:
```powershell
# Specific version
& { irm https://github.com/fulll/github-code-search/install.ps1 } -Version v1.9.0
# Specific version and architecture (e.g. x64-modern, x64-baseline, arm64)
& { irm https://github.com/fulll/github-code-search/install.ps1 } -Version v1.9.0 -Target x64-modern

Copilot uses AI. Check for mistakes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants